home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / SOURCE / MORTYPES.C < prev    next >
C/C++ Source or Header  |  1994-05-15  |  794b  |  27 lines

  1.                              /* Chapter 4 - Program 2 - MORTYPES.C */
  2. /* The purpose of this file is to introduce additional data types  */
  3.  
  4. void main()
  5. {
  6. int a, b, c;            /* -32768 to 32767 with no decimal point */
  7. char x, y, z;           /* -128 to 127 with no decimal point     */
  8. float num, toy, thing;  /* 3.4E-38 to 3.4E+38 with decimal point */
  9.  
  10.    a = b = c = -27;
  11.    x = y = z = 'A';
  12.    num = toy = thing = 3.6792;
  13.  
  14.    a = y;             /* a is now 65 (character A)               */
  15.    x = b;             /* x is now -27                            */
  16.    num = b;           /* num will now be -27.00                  */
  17.    a = toy;           /* a will now be 3                         */
  18. }
  19.  
  20.  
  21.  
  22. /* Result of execution
  23.  
  24. (No output from this program.)
  25.  
  26. */
  27.